home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 12 / CU Amiga Magazine's Super CD-ROM 12 (1997)(EMAP Images)(GB)[!][issue 1997-07].iso / CUCD / Games / DestructivePoker / sources / sources.lha / IDCMP.cpp < prev    next >
C/C++ Source or Header  |  1997-02-13  |  259b  |  19 lines

  1. /*
  2.     IDCMP.cpp
  3.  
  4.     V1.00 - 130297    Kimmo Teräväinen
  5.     -----    ------    ----------------
  6.     look IDCMP.h
  7. */
  8. #include <inline++/exec.h>
  9. #include "IDCMP.h"
  10.  
  11. void cIDCMP::FlushMessages(Window *Wnd)
  12. {
  13.   Message *msg;
  14.  
  15.   while(msg=GetMsg(Wnd->UserPort))
  16.     ReplyMsg(msg);
  17.  
  18.  
  19. }